 *{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
  }

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(241, 242, 246, 0.7),rgba(56, 81, 190, 0.7)), url('foto/handen.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
    background-color: black;
}


nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: enter;
}

nav img {
    width: 175px;
}

.nav-links{
  flex: 1;
  text-align: right;
}

.nav-links ul li{
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}

.nav-links ul li a{
   color: white;
   text-decoration: none;
   font-size: 13px;
}

.nav-links ul li::after{
   content: '';
   width: 0%;
   height: 2px;
   background: #3852e2;
   display: block;
   margin: auto;
   transition: 0.5s;
}

.nav-links ul li:hover::after{
  width: 100%;
}

.text-box{
  width: 90%;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align:center;
}

.text-box h1{
  font-size: 55px;
}

.text-box p{
  margin: 10px 0 40px;
  font-size: 14px;
  color: white;
}

#hero-btn{
  display: inline-block;
  text-decoration: none;
  color: white;
  border: 1px solid white;
  padding: 12px 34px;
  font-size: 20px;
  background: transparent;
  position: relative;
  cursor: pointer;
}

#hero-btn:hover{
  border: 1px solid #111487;
  background: #111487;
  transition: 1s;
}

.hero-btn{
  display: inline-block;
  text-decoration: none;
  color: black;
  border: 1px solid black;
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.hero-btn:hover{
  border: 1px solid #111487;
  background: #111487;
  transition: 1s;
}

#more {display: none;}

nav .fas{
  display: none;
}

@media(max-width: 700px){
  .text-box h1{
    font-size: 18px;
  }
  .nav-links ul li{
    display: block;
  }
  .nav-links{
    position: fixed;
    background: #2025af;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 0.5s;
  }
  nav .fas{
    display: block;
    color: #ffffff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .nav-links ul{
    padding: 30px;
  }
}

/*------- knoppen hoofdpagina ML ------*/

.course{
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}

h1{
  font-size: 40px;
  font-weight: 600;
}

p{
  color: black;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}

.row{
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}

.course-col{
  flex-basis: 31%;
  background: #101d8c7e;
  border-radius: 10px;
  margin: auto;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
  width: 80%;
  margin-bottom: 1%;

}

h3{
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}
.course-col:hover{
  box-shadow: 0 0 20px 0px rgba(0,0,0,0.2) ;
}
.blauw-btn{
  display: inline-block;
  text-decoration: none;
  color: #fff3f3;
  border: none;
  padding: 12px 12px;
  font-size: 13px;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.blauw-btn::after{
  content: '';
  width: 0%;
  height: 2px;
  background: #ffffff;
  display: block;
  margin: auto;
  transition: 0.5s;
}

.blauw-btn:hover::after{
width: 100%;
}

@media(max-width: 700px){
  .row{
    flex-direction: column;
  }
}

/*-- Hoe doen we dat? --*/

.sub-header_hoedoenwedat{
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.7),rgba(54, 83, 202, 0.7)), url(foto/Hoe_doen_we_dat.jpg);
  background-size: 100% 110%;
  text-align: center;
  
  color: #ffffff; 
}




/*---over mij MM -----*/

.karin{
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}



.sub-header_over_mij{
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(216, 219, 232, 0.7),rgba(53, 85, 213, 0.7)), url(foto/over_mij.png);
  background-size: 100% 120%;
  text-align: center;
  color: #ffffff;
}
@media(max-width: 1000px){
  .sub-header_over_mij{
    background-image:linear-gradient(rgba(216, 219, 232, 0.7),rgba(53, 85, 213, 0.7)), url(foto/over_mij_klein.png);
  }
}
@media(max-width: 700px){
  .cta h1{
    font-size: 24px;
  }
}
@media(max-width: 750px){
  .sub-header_over_mij{
    height:50vh;
  }
}
@media(max-width: 600px){
  .sub-header_over_mij{
    height:45vh;
  }
}
@media(max-width: 450px){
  .sub-header_over_mij{
    height:40vh;
  }
}
@media(max-width: 300px){
  .sub-header_over_mij{
    height:35vh;
  }
}

/*-----contact op hoofdpagina-----*/

.cta{
  margin: 100px auto;
  width: 80%;
  background-image: linear-gradient(rgba(244, 243, 243, 0.7),rgba(56, 214, 164, 0.7)), url(foto/vragen.jpg);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  text-align: center;
  padding: 100px 0;
  margin-bottom: 150px;
}

.cta h1{
  color: #ffffff;
  margin-bottom: 40px;
  padding: 0;
}

@media(max-width: 700px){
  .cta h1{
    font-size: 24px;
  }
}
/*-----vergoeding ------*/
.sub-header_vergoeding{
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(241, 242, 246, 0.7),rgba(43, 62, 157, 0.7)), url('foto/vergoeding.jpg');
  background-position: center;
  background-size: cover;
  position: relative;
  background-color: black;
}


/*-----contact LH ------*/
.sub-header_contact{
  height: 60vh;
  width: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.7),rgba(54, 83, 202, 0.7)), url(foto/contact.png);
  background-size: 100% 110%;
  text-align: center;
  color: #ffffff;
}
@media(max-width: 1500px){
  .sub-header_contact{
    background-image:linear-gradient(rgba(216, 219, 232, 0.7),rgba(53, 85, 213, 0.7)), url(foto/contact_klein.png);
  }
}
@media(max-width: 850px){
  .sub-header_contact{
    height:55vh;
  }
}
@media(max-width: 750px){
  .sub-header_contact{
    height:50vh;
  }
}
@media(max-width: 600px){
  .sub-header_contact{
    height:45vh;
  }
}
@media(max-width: 450px){
  .sub-header_contact{
    height:40vh;
  }
}
@media(max-width: 300px){
  .sub-header_contact{
    height:35vh;
  }
}

.location{
  width: 80%;
  margin: auto;
  padding: 80px 0;
}

.location iframe{
  width: 100%;
}

.contact-us{
  width: 80%;
  margin: auto;
}

.contact-col{
   flex-basis: 48%;
   margin-bottom: 30px;
 }

.contact-col div{
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.contact-col div .fas{
  font-size: 28px;
  color: #7e7cf9;
  margin: 10px;
  margin-right: 30px;
}

.contact-col div p{
  padding: 0;
  color: #111487;
}

.contact-col div H5{
  font-size: 20px;
  margin-bottom: 5px;
  color: #111487;
  font-weight: 400;
}

.contact-col input, .contact-col textarea{
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: #111487;
  border: 1px solid #111487;
  box-sizing:  border-box;
}
.footer{
  width: 100%;
  text-align: center;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cacbff;
}
.footer_contents{
  width: 80%;
  height: 250px;
  border-radius: 25px;
  background: transparent;

}
.left_footer{
  width: 50%;
  height: 250px;
  float: left;
}
.right_footer{
  width: 50%;
  height: 250px;
  float: right;
}
.logo_footer{
  width: 255px;
  height: auto;
  float: right;
  padding-right: 20px;
}
.tel_kvk{
  position: relative;
  bottom: 40px;
  right: -100px

}
.kiwa_keurmerk{
  width: 125px;
  height: auto;

}
.wetten{
  text-align: left;
  padding-left: 30px;

}
.copyright{
  text-align: left;
  padding-left: 30px;
}
.form-handle{
  margin-left: 80px;
  margin-right: 80px;
  margin-top: 30px;
}
.uitkomst{
  margin-left: 10px;
  margin-bottom: 0px !important;
}
@media screen and (max-width: 1100px) {
  .left_footer{
    width: 80%;

  }
  .right_footer{
    width: 80%;
  }
  .footer_contents{
    height: 494px;
  }
  .footer{
    width: 100%;
  }
}

@media screen and (max-width: 660px) {
  .kiwa_keurmerk{
    width: 100px;
    height: auto;
    padding-top: 10px
  }
  
  .right_footer{
    width: 100%;
  }
  .left_footer{
    padding-top: 20px;
    width: 100%;
  }
  .copyright{
    font-size: 13px;
  }
}

@media screen and (max-width: 530px) {
  .footer_contents{
    height: auto;
  }

  .logo_footer{
    width: 200px;

  }
  .kiwa_keurmerk{
    width: 80px;
    float: left;
    padding-left: 20px;
  }
  .tel_kvk{
    width: 100px;
    height: 50px;

  }
}
@media screen and (max-width: 415px) {

  .tel_kvk{
    font-size: 11px;
    padding-top: 150px;
  }
  .copyright{
    font-size: 10px;
  }
  .wetten{
    font-size: 11px;
  }
  .left_footer{
    height: 170px;
  }
}